home *** CD-ROM | disk | FTP | other *** search
- # Copyright 1999-2005 Gentoo Foundation
- # Distributed under the terms of the GNU General Public License v2
- # $Id: mailer.eselect 221 2005-10-18 00:45:54Z ka0ttic $
-
- DESCRIPTION="Manage the mailwrapper profiles in /etc/mail"
- MAINTAINER="slarti@gentoo.org"
- SVN_DATE='$Date: 2005-10-18 01:45:54 +0100 (Tue, 18 Oct 2005) $'
- VERSION=$(svn_date_to_version "${SVN_DATE}")
-
- # check we have /etc/mail
- check_dirs() {
- if [[ ! -d ${ROOT}/etc/mail ]] ; then
- die -q "/etc/mail does not exist, or is not a directory. Please fix."
- fi
- }
-
- # find a list of mailer.conf symlink targets
- find_targets() {
- check_dirs
- for f in ${ROOT}/etc/mail/*.mailer ; do
- [[ -e ${f} ]] || continue
- echo ${f##*/}
- done
- }
-
- # try to remove the mailer.conf symlink
- remove_symlink() {
- check_dirs
- rm "${ROOT}/etc/mail/mailer.conf"
- }
-
- # set the mailer.conf symlink
- set_symlink() {
- check_dirs
- target=${1}
- if is_number "${target}" ; then
- targets=( $(find_targets ) )
- target=${targets[$(( ${target} - 1 ))]%.mailer}
- fi
- if [[ -z ${target} ]] ; then
- die -q "Target \"${1}\" doesn't appear to be valid!"
- elif [[ -f "${ROOT}/etc/mail/${target}.mailer" ]] ; then
- pushd "${ROOT}/etc/mail" 1>/dev/null
- ln -s "${target}.mailer" "mailer.conf"
- popd 1>/dev/null
- else
- die -q "Target \"${1}\" doesn't appear to be valid!"
- fi
- }
-
- ### show action ###
-
- describe_show() {
- echo "Show the current mailer.conf profile"
- }
-
- do_show() {
- check_dirs
- write_list_start "Current mailer.conf profile:"
- if [[ -L "${ROOT}/etc/mail/mailer.conf" ]] ; then
- profile="$(readlink ${ROOT}/etc/mail/mailer.conf )"
- write_kv_list_entry "${profile%.mailer}" ""
- elif [[ -e "${ROOT}/etc/mail/mailer.conf" ]] ; then
- write_kv_list_entry "(not a symlink)" ""
- else
- write_kv_list_entry "(unset)" ""
- fi
- }
-
- ### list action ###
-
- describe_list() {
- echo "List available mailer.conf profiles"
- }
-
- do_list() {
- check_dirs
- targets=( $(find_targets ) )
- targets=( ${targets[@]%.mailer} )
- write_list_start "Available mailer.conf profiles:"
- if [[ -n ${targets[@]} ]] ; then
- local i
- for (( i = 0 ; i < ${#targets[@]} ; i = i + 1 )) ; do
- # any more elegant way to do this?
- local profile
- profile="$(readlink ${ROOT}/etc/mail/mailer.conf )"
- [[ ${targets[${i}]} == ${profile%.mailer} ]] && \
- targets[${i}]="${targets[${i}]} $(highlight '*' )"
- done
- write_numbered_list "${targets[@]}"
- else
- write_kv_list_entry "(none found)" ""
- fi
- }
-
- ### set action ###
-
- describe_set() {
- echo "Set a new mailer.conf profile"
- }
-
- describe_set_parameters() {
- echo "<target>"
- }
-
- describe_set_options() {
- echo "target : Target name or number (from 'list' action)"
- }
-
- do_set() {
- check_dirs
- if [[ -z ${1} ]] ; then
- die -q "You didn't tell me what to set the profile to"
-
- elif [[ -L "${ROOT}/etc/mail/mailer.conf" ]] ; then
- if ! remove_symlink ; then
- die -q "Couldn't remove existing mailer.conf"
- elif ! set_symlink "${1}" ; then
- die -q "Couldn't set a new profile"
- fi
-
- elif [[ -e "${ROOT}/etc/mail/mailer.conf" ]] ; then
- # we have something strange
- die -q "Sorry, ${ROOT}/etc/mail/mailer.conf confuses me"
-
- else
- set_symlink "${1}" || die -q "Couldn't set a new symlink"
- fi
- }
-
- # vim: set ft=eselect :
-